home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / misc / gs261src.zip / gsimage.h < prev    next >
C/C++ Source or Header  |  1993-05-13  |  2KB  |  39 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* gsimage.h */
  20. /* Image painting interface for Ghostscript library */
  21. /* Requires gscspace.h, gsstate.h, and gsmatrix.h */
  22.  
  23. /* Image painting.  This is done in an enumeration style: */
  24. /* the client initializes an enumerator, then supplies data incrementally. */
  25. typedef struct gs_image_enum_s gs_image_enum;
  26. extern const uint gs_image_enum_sizeof;
  27. /* image_init and imagemask_init return 1 for an empty image, */
  28. /* 0 normally, <0 on error. */
  29. int    gs_image_init(P9(gs_image_enum *penum, gs_state *pgs,
  30.              int width, int height, int bits_per_component,
  31.              int spread, const gs_color_space *pcs,
  32.              const float *decode, gs_matrix *pmat));
  33. int    gs_imagemask_init(P7(gs_image_enum *penum, gs_state *pgs,
  34.                  int width, int height, int invert,
  35.                  gs_matrix *pmat, int adjust));
  36. int    gs_image_next(P3(gs_image_enum *penum, byte *dbytes, uint dsize));
  37. /* Clean up after processing an image. */
  38. void    gs_image_cleanup(P1(gs_image_enum *penum));
  39.